home *** CD-ROM | disk | FTP | other *** search
/ Magnum One / Magnum One (Mid-American Digital) (Disc Manufacturing).iso / d12 / tchk050.arc / TCHK.TC (.txt) < prev    next >
Turbo C Configuration  |  1988-11-19  |  8KB  |  105 lines

  1. Turbo C Configuration File 
  2. c:\turboc\tchk
  3. c:\turboc\include;c:\turboc\userlib
  4. c:\turboc\lib
  5. :\TCHKDEMO.PRJ
  6. B\HKINC.PRJ
  7. byte = unsigned char
  8.                                                                                                                                                             
  9. Contents
  10. COPYRIGHT AND DISCLAIMER  ..........................................   3
  11. TRADEMARKS  ........................................................   3
  12. LICENSE  ...........................................................   3
  13. BACKGROUND  ........................................................   3
  14. FILES  .............................................................   4
  15. IN THE BEGINNING..  ................................................   4
  16. FEATURES  ..........................................................   5
  17. FUNCTIONS  .........................................................   5
  18. atrim - trims leading and trailing blanks  ....................   7
  19. ltrim - trims leading blanks  .................................   7
  20. rtrim - trims trailing blanks  ................................   7
  21. box - draw a box  .............................................   8
  22. clear - clears a portion of the screen  .......................   9
  23. clear_typeahead - clear typeahead buffer  .....................  10
  24. cls - clear screen  ...........................................  11
  25. cursor_flip - toggle the cursor type  .........................  12
  26. cursor_off - turn the cursor off  .............................  13
  27. cursor_on - turn the cursor on  ...............................  14
  28. dayofyear - calculate the day of the year  ....................  15
  29. daysleft - calculate the days left in the year  ...............  16
  30. ddatetolong - convert a date to long string  ..................  17
  31. ddatetoshort - convert a date to long string  .................  18
  32. ddatetostr - convert a date to abbrev. string  ................  19
  33. delay - wait for a time delay  ................................  20
  34. diffddate - calculate the difference in 2 dates  ..............  21
  35. getc_match - get specific input,  case independent  ...........  22
  36. getk_match - get specific input, case dependent  ..............  22
  37. getddate - inputs a date from the keyboard  ...................  23
  38. getdouble - inputs a double from the keyboard  ................  24
  39. getfname - get a filename from the keyboard  ..................  25
  40. getget - get a string from the keyboard w/editing  ............  26
  41. getint - inputs an integer from the keyboard  .................  27
  42. getk - get a key  .............................................  28
  43. getlogical - get Yes/No  ......................................  29
  44. getreal - inputs a real from the keyboard  ....................  30
  45. getstr - input a string from the keyboard  ....................  31
  46. getyn - get Yes/No  ...........................................  32
  47. gotoxy - move cursor to coordinates (x,y)  ....................  33
  48. horiz_line - draw a horizontal line  ..........................  34
  49. inkey - get a key  ............................................  35
  50. intlen - calculate length of integer in a string  .............  36
  51. isCGA - is Color Graphics adapter installed  ..................  37
  52. isEGA - is Enhanced Graphics adapter installed  ...............  37
  53. isHerc - is Hercules Graphics adapter installed  ..............  37
  54. isMDA - is Monochrome adapter installed  ......................  37
  55. isEMSavail - is EMS available  ................................  38
  56. isleapyear - is a year a leap year  ...........................  39
  57. leftstr - return the left portion of string  ..................  40
  58. midstr - return a piece of a string  ..........................  40
  59. rightstr - return the right portion of a string  ..............  40
  60. lotus_setup - creates info for menu_lotus()  ..................  41
  61. menu_lotus - Lotus style menu  ................................  42
  62. monthexpand - convert a month abbrev to its name  .............  44
  63. putk - put a character w/attribute on the screen  .............  45
  64. putsay - put a string with attribute on the screen  ...........  46
  65. putstr - put a string with attribute on the screen  ...........  47
  66. read_cursor - reads cursor information  .......................  48
  67. read_mode - find screen width, mode and page  .................  49
  68. restore_box - restore a part of the screen  ...................  50
  69. restore_screen - restore screen  ..............................  51
  70. ROM_date - gets the ROM id date  ..............................  52
  71. ROM_id - gets the ROM id byte  ................................  53
  72. save_box - save a part of the screen  .........................  54
  73. save_screen - save screen  ....................................  55
  74. scroll_down - scroll window down  .............................  56
  75. scroll_up - scroll window up  .................................  57
  76. set_color - set the default attribute (color)  ................  58
  77. set_cursor - sets cursor scan lines  ..........................  59
  78. set_mode - set the video mode  ................................  60
  79. strcomma - convert a string to xx,xxx,xxx format  .............  61
  80. strdel - delete part of a string  .............................  62
  81. strins - insert one string into another  ......................  63
  82. strrep - replicate a char  ....................................  64
  83. strshleft - shift string left  ................................  65
  84. strshright - shift string right  ..............................  65
  85. strtoddate - convert a date string to a structure  ............  66
  86. strtodol - converts a string to dollar format  ................  67
  87. strtotime - convert a string to a time structure  .............  68
  88. timetostr - convert time structure to a string  ...............  69
  89. valid_date - check if a date is valid  ........................  70
  90. vert_line - draw a vertical line  .............................  71
  91. wherex - X-coordinate of cursor   .............................  72
  92. wherey - y-coordinate of cursor   .............................  73
  93. #DEFINES  ..........................................................  74
  94. Datehk.h  .....................................................  74
  95. Howard.h  .....................................................  74
  96. Ibm.h  ........................................................  74
  97. Math.h  .......................................................  75
  98. Video.h  ......................................................  75
  99. VARIABLE TYPES  ....................................................  75
  100. GLOBAL VARIABLES  ..................................................  76
  101. Keyboard variables:  ..........................................  76
  102. Video variables:  .............................................  76
  103. FUTURE REVISIONS  ..................................................  76
  104. INDEX  .............................................................  79
  105.